5
|
How do I put a picture on the control's background

With Exscrollbar1
.Picture = Exscrollbar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,False)
.BackColor32 = &H80000004
End With
|
4
|
How can I change the size of control's font

With Exscrollbar1
.Font.Size = 12
.ForeColor = Color.FromArgb(255,0,0)
.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb")
End With
|
3
|
How do I change the control's font

With Exscrollbar1
.Font.Name = "Tahoma"
.ForeColor = Color.FromArgb(255,0,0)
.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb")
End With
|
2
|
How can I change the control's foreground color

With Exscrollbar1
.ForeColor = Color.FromArgb(255,0,0)
.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb")
End With
|
1
|
How can I change the control's background color

With Exscrollbar1
.BackColor = Color.FromArgb(0,255,0)
.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,False)
End With
|